@lobehub/chat
Version:
Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.
22 lines (19 loc) • 448 B
text/typescript
import { createStyles } from 'antd-style';
export const useStyles = createStyles(({ css, token }) => ({
animatedContainer: css`
transition:
height 0.3s ease,
opacity 0.3s ease;
`,
prompt: css`
opacity: 0.75;
transition: opacity 200ms ${token.motionEaseOut};
&:hover {
opacity: 1;
}
`,
promptBox: css`
position: relative;
border-block-end: 1px solid ${token.colorBorderSecondary};
`,
}));